home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / DB_CLIPP / 1159.ZIP / UPDATE.BAT < prev   
DOS Batch File  |  1987-03-17  |  1KB  |  49 lines

  1. ECHO OFF
  2. CLS
  3. BREAK ON
  4. IF "%1"=="" GOTO HELP
  5. IF "%1"=="B:" GOTO START
  6. IF "%1"=="b:" GOTO START
  7. IF "%1"=="C:" GOTO START
  8. IF "%1"=="c:" GOTO START
  9. IF "%1"=="D:" GOTO START
  10. IF "%1"=="d:" GOTO START
  11. IF "%1"=="E:" GOTO START
  12. IF "%1"=="e:" GOTO START
  13. IF "%1"=="F:" GOTO START
  14. IF "%1"=="f:" GOTO START
  15. :HELP
  16. ECHO To update your version of ISR-20 onto your fixed disk, you should type the
  17. ECHO word "UPDATE" followed by a space and then the drive designation of
  18. ECHO your fixed disk.  For example, if the drive designation for your fixed
  19. ECHO disk is "C:", then the proper command is the following:
  20. ECHO .
  21. ECHO                           UPDATE C:
  22. ECHO .
  23. GOTO END 
  24. :START 
  25. IF NOT EXIST ISR.PRG GOTO START2
  26. %1 
  27. CD\ 
  28. CLS
  29. COPY A:\*.PRG \ISR-20/V 
  30. COPY A:\*.FMT \ISR-20/V
  31. GOTO START3
  32. :START2
  33. %1
  34. CD \
  35. CLS
  36. COPY A:\ISR.EXE \ISR-20/V
  37. :START3
  38. COPY A:\*.ME \ISR-20/V
  39. COPY A:\ISR.BAT \/V
  40. COPY A:\*.BAT \ISR-20/V
  41. ECHO YOUR SYSTEM HAS NOW BEEN UPDATED TO VERSION 3.03 OF ISR-20.
  42. ECHO .
  43. ECHO Please note that two of the predefined dot commands have changed
  44. ECHO from what they were in certain previous versions.  The earlier dot command 
  45. ECHO ".C99." is now ".2.", and the earlier dot command ".C0." is now ".3.".  Please 
  46. ECHO see the instructions (AAAPRINT.ME) for more details. 
  47. :END 
  48.  
  49.